home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / File List 14 / Options.h < prev    next >
Text File  |  1990-09-14  |  719b  |  22 lines

  1. /*
  2.     FileList 1.4
  3.     "Options.h"
  4. */
  5.  
  6. typedef struct {                    /* Options file structure: */
  7.     long            version;        /* - version number */
  8.     long            heap;            /* - minimum heap size */
  9.     unsigned short    volumes;        /* - percentage of volumes */
  10.     unsigned short    files;            /* - percentage of files */
  11.     unsigned short    name;            /* - average name size */
  12.     short            date;            /* - date format */
  13.     Byte            stuffit;        /* - recognize StuffIt archives */
  14.     Byte            automatic;        /* - automatic volume mode */
  15.     Byte            compactor;        /* - recognize Compactor archives */
  16.     Byte            tabs;            /* - tabs or spaces for text */
  17.     Rect            vwindow;        /* - volume window */
  18.     Rect            fwindow;        /* - file window */
  19. } Parameter, *ParameterPtr, **ParameterHdl;
  20.  
  21. void DoOptions (short);
  22.